home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / ZELTAR-7.ZIP / HF-1.POV next >
Encoding:
Text File  |  1997-04-30  |  1.1 KB  |  36 lines

  1.  
  2. ////////////////////////////////////////////////////////////
  3. ///////////////////////////////////////////////////////////
  4. //////////////////////////////////////////////////////////
  5. //
  6. // hf-1.pov
  7. //
  8. // Run this at 320x200 to make a TGA height_field file.
  9. //
  10. // This file is a slightly modified version of the one
  11. // included in the POV-Ray 3.0 height_field tutorial.
  12. //
  13. ////////////////////////////////////////////////////////////
  14. ///////////////////////////////////////////////////////////
  15. //////////////////////////////////////////////////////////
  16.  
  17.         #include "colors.inc"
  18.  
  19.         global_settings { assumed_gamma 2.2 hf_gray_16 }
  20.  
  21.         camera { location <0, 0, -10> look_at 0 }
  22.  
  23.         plane { z, 10 hollow
  24.                 pigment { wrinkles
  25.                         color_map { [0 0.3*White][1 White] }
  26.                         turbulence 0.3 } }
  27.  
  28.         light_source { <0, 20, -100> color White }
  29.  
  30. ////////////////////////////////////////////////////////////
  31. ///////////////////////////////////////////////////////////
  32. //////////////////////////////////////////////////////////
  33. //
  34. // Bye!
  35.  
  36.